dart loop through array

131

for (var i = 0; i < list.length; i++) {
  print(list[i]);
}

Comments

Submit
0 Comments